home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / renameforframestore.ifx < prev    next >
Text File  |  2004-08-03  |  823b  |  40 lines

  1. /*
  2.  * RenameForFrameStore.ifx
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Rename frames to be Toaster compatible.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number (?)
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. framenum = Word(Arg(1),1)
  22. fullpath = Word(Arg(1),2)
  23.  
  24. i = LASTPOS(fullpath,'/')
  25. IF i = 0 THEN i = LASTPOS(fullpath,':')
  26. IF i > 0 THEN DO
  27.    file = SUBSTR(fullpath,i+1)
  28.    path = LEFT(fullpath,i)
  29.    END
  30. ELSE DO
  31.    file = fullpath
  32.    path = ""
  33.    END
  34.  
  35. newfilename = path||RIGHT('000'||framenum,3)||'.FS.'file
  36.  
  37. ADDRESS COMMAND 'Copy CLONE' fullpath newfilename
  38.  
  39. EXIT
  40.